home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / reiser4 / print.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  688b  |  31 lines

  1. /* Copyright (C) 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
  2.    reiser4progs/COPYING.
  3.    
  4.    print.h -- different print functions. */
  5.  
  6. #ifndef REISER4_PRINT_H
  7. #define REISER4_PRINT_H
  8.  
  9. #ifndef ENABLE_MINIMAL
  10. #include <reiser4/types.h>
  11.  
  12. extern void reiser4_print_fini(void);
  13.  
  14. extern errno_t reiser4_print_init(uint32_t pool);
  15.  
  16. extern char *reiser4_print_key(reiser4_key_t *key);
  17.  
  18. extern char *reiser4_print_inode(reiser4_key_t *key);
  19.  
  20. #ifdef ENABLE_DEBUG
  21.  
  22. extern void reiser4_print_format(reiser4_format_t *format, uint16_t options);
  23.  
  24. extern void reiser4_print_node(reiser4_node_t *node, uint32_t start, 
  25.                    uint32_t count, uint16_t options);
  26.  
  27. #endif
  28.  
  29. #endif
  30. #endif
  31.